home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / bench / x.txt / 000138_fdc@watsun.cc.columbia.edu_Fri Nov 9 09:29:38 EST 2001.msg < prev    next >
Text File  |  2020-01-01  |  3KB  |  81 lines

  1. Article: 12956 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!watsun.cc.columbia.edu!fdc
  3. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  4. Newsgroups: comp.protocols.kermit.misc
  5. Subject: Re: INPUT Initialization Error
  6. Date: 9 Nov 2001 14:24:52 GMT
  7. Organization: Columbia University
  8. Lines: 64
  9. Message-ID: <9sgovk$9ev$1@newsmaster.cc.columbia.edu>
  10. References: <9scp19217r7@enews2.newsguy.com> <9se35i$ip6$1@newsmaster.cc.columbia.edu> <9sfc9v025s2@enews4.newsguy.com>
  11. NNTP-Posting-Host: watsun.cc.columbia.edu
  12. X-Trace: newsmaster.cc.columbia.edu 1005315892 9695 128.59.39.2 (9 Nov 2001 14:24:52 GMT)
  13. X-Complaints-To: postmaster@columbia.edu
  14. NNTP-Posting-Date: 9 Nov 2001 14:24:52 GMT
  15. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:12956
  16.  
  17. In article <9sfc9v025s2@enews4.newsguy.com>,
  18. Grinder <grinder@no.spam.maam.com> wrote:
  19. : Ok, I think I nearly have this whipped.  Your advice has been
  20. : great.  If you're up for a bit more, I could stand a sanity
  21. : check.
  22. : In particular, I'm unsure about the order of the modem
  23. : configuration commands.  I noticed in the K96custom.ini that
  24. : gets installed, that it first sets modem type to "none," before
  25. : applying the tapi parameters retrieved during setup.  I guessed
  26. : this was because setting values could trigger code that would
  27. : act on an incomplete configuration.  By declaring "none," the
  28. : logic would bypass those reactions?
  29. No, that's backwards.  The order should be:
  30.  
  31.   set modem type xxxx  ; Choose modem type
  32.   set modem ...        ; Change default settings for that modem if necessary
  33.   set port com3        ; DOS-like port
  34.   if fail ...          ; Check
  35.  
  36. SET MODEM TYPE first, other SET MODEM commands next, SET PORT after that.
  37. Use SHOW COMM and SHOW MODEM to check the results.  In this case Kermit
  38. always does the dialing based on the rules in its built-in modem database
  39. (modem types are listed with "set modem type ?").
  40.  
  41. If you're using a TAPI device (modem name from the Modems folder in the
  42. Windows Control Panel) instead of a DOS-like port:
  43.  
  44.   set port tapi        ; Choose first or only TAPI device (port + modem)
  45.   if fail ...          ; Check
  46.   set modem ...        ; Change any modem settings (SHOW MODEM)
  47.  
  48. When using a TAPI device you can also choose whether Kermit issues the
  49. dialing commands:
  50.  
  51.   set tapi modem-dialing off
  52.  
  53. or TAPI (the Microsoft modem driver) does it:
  54.  
  55.   set tapi modem-dialing on
  56.  
  57. You can also give SET DIAL commands to change dialing defaults (SHOW DIAL),
  58. but it shouldn't matter where you put them.
  59.  
  60. There are no rules about whether to use a DOS-like COM port or a TAPI device,
  61. or to use TAPI or Kermit modem dialing, besides the obvious rule of thumb:
  62. If one way doesn't work, try another; repeat until done.
  63.  
  64. Other troubleshooting items useful for dialing include:
  65.  
  66.  . SET DIAL DISPLAY ON (lets you watch the Kermit/Modem dialog)
  67.  . SET DIAL HANGUP OFF (don't hang up prior to dialing)
  68.  
  69. Or when DIAL HANGUP is ON, choose the hangup method:
  70.  
  71.  . SET MODEM HANGUP-METHOD RS232-SIGNAL
  72.  . SET MODEM HANGUP-METHOD MODEM-COMMAND
  73.  
  74. This isn't science; we're trying to make a mystery work with a puzzle.
  75. Try different combinations until you get one that works.  When you run out
  76. of options, ask for help.
  77.  
  78. - Frank
  79.